home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 46 / Amiga Format CD46 (1999-10-20)(Future Publishing)(GB)[!][issue 1999-12].iso / -serious- / programming / arexx / cliped / cliped.readme next >
Text File  |  1999-09-06  |  3KB  |  94 lines

  1.  
  2.     ClipEd 1.12 - by Rolf Max Rotvel
  3.  
  4.  
  5.     DESCRIPTION:
  6.     Edit, create, delete or rename entries in Arexx internal clip list.
  7.  
  8.  
  9.     REQUIREMENTS:
  10.     rexxreqtools.library. Rexxmast.
  11.  
  12.  
  13.     INSTALLATION
  14.     Copy it to rexx: and run it :-).
  15.  
  16.  
  17.     USAGE
  18.     The listview is fairly standard: Use Cursor or Shift Cursor keys to
  19.     navigate and Enter to select a clip. Help shows this text:
  20.  
  21.     d or Delete : Delete clip
  22.     e           : Edit clip value
  23.     r           : Rename clip
  24.     n           : Create a new clip
  25.     u           : Update the cliplist
  26.     q or Escape : Quit ClipEd                   
  27.  
  28.     Any linefeeds or carriage returns in clip values will be shown as \n or
  29.     \r. If you want to enter a linefeed or carriage return in a clip value
  30.     enter '\n' or '\r' in the string requester.
  31.  
  32.  
  33.     CONFIGURATION
  34.     If the listview window is too big or too small for your screen simply
  35.     change the rxlv.width and rxlv.height values in the start of the script.
  36.  
  37.  
  38.     RXLISTVIEW
  39.     If you're interested in using the listview in your own Arexx scripts
  40.     look for 'rxlistview' in the util/rexx directory on aminet. It's a kind
  41.     of developers package that describes how to use it (The current version
  42.     is rxlistview18.lha).
  43.  
  44.  
  45.     CREDITS:
  46.     Thanks to 
  47.     Magnus Holmgren/Rafael D'Halleweyn for Reqtools/Rexxreqtools.
  48.     Frederic Delacroix for his bug report.
  49.     Nils Goers for his nice email.
  50.  
  51.  
  52.     COPYRIGHT
  53.     No copyright. Do whatever you want with this.    
  54.  
  55.  
  56.     DISCLAIMER
  57.     It's all your fault :-) 
  58.  
  59.  
  60.     AUTHOR
  61.     Please send send any comments you might have to me: 
  62.  
  63.     Email: rolfr@post4.tele.dk
  64.     Fidonet: 2:238/188.7
  65.  
  66.  
  67.     HISTORY:
  68.     1.0 - First release.
  69.     1.1 - Added handling of newline(s) in clip values.
  70.     1.2 - Slightly better newline handling...
  71.     1.3 - Updated listview requester.
  72.           Fixed newline bug.
  73.     1.4 - Added cr handling.
  74.           Optimized listview requester.
  75.           When creating a new clip now check if it already exists.
  76.           And some other bits and pieces :-) 
  77.     1.5 - Fixed stupid bug in listview requester.
  78.           Changed \cr \nl -> \r \n to confirm to printf() standard.
  79.     1.6 - Updated to latest version of listview procedure.
  80.     1.7 - Added refresh gadget that rereads the cliplist.
  81.     1.8 - Now uses listview as frontend.
  82.           Listview wasn't updated properly when adding clips.
  83.           Added support for Help, Delete and inline editing keys.
  84.           Listview now 'rolls over'.
  85.           Many internal changes to listview.
  86.     1.9 - Listview no longer highlights an empty list.
  87.     1.10 - Listview didn't update properly when 'rolling over' to the top.
  88.     1.11 - Added renaming of clips (Nils Goers)
  89.            Ok/Cancel gadgets are consistent in all requesters.
  90.            Inline keys changed slightly.
  91.     1.12 - Samll changes to listview.
  92.            Window is only updated when cliplist is changed.
  93.            Bugfix: No longer tries to rename when cliplist is empty.
  94.